home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / wais / ftw / stringtoany.c < prev    next >
C/C++ Source or Header  |  1995-05-09  |  570b  |  26 lines

  1. /* WIDE AREA INFORMATION SERVER SOFTWARE:
  2.    No guarantees or restrictions.  See the readme file for the full standard
  3.    disclaimer.    
  4.   
  5.  *
  6.  * Change log:
  7.  * $Log:    stringtoany.c,v $
  8.  * Revision 1.3  92/02/27  09:26:14  jonathan
  9.  * seperated =* since some compilers get confused (ULTRIX).
  10.  * 
  11.  * Revision 1.2  92/02/16  18:23:52  jonathan
  12.  * Utility to make an any out of a string
  13.  * 
  14. */
  15.  
  16. main(argc,argv)
  17. int argc;
  18. char **argv;
  19. {
  20.   char c;
  21.   printf("(:any :size %d :bytes #( ", strlen(argv[1]));
  22.   while(c = *argv[1]++) printf("%d ", c);
  23.   printf(") )\n");
  24.   exit(0);
  25. }
  26.